home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 4,101 to 4,200 / aol-file-protocol-4400-4101-to-4200.zip / AOLDLs / Invoice & Inventory / ADIOS_ V8.02 Amway distributors / ADIOS8.exe / ADIOS.ERR < prev    next >
Text File  |  1993-03-10  |  4KB  |  99 lines

  1.  
  2. ERROR CODES
  3.  
  4. When running aDIOS make sure your AUTOEXEC.BAT or ADIOS.BAT have the
  5. following statements included:
  6.   SET ADIOS=C:
  7.   DM001098 C:
  8. If the colon is missing, you can get strange results when looking up
  9. products. If you are running from a drive other than C use that drive name
  10. followed by a colon. e.g. A:
  11.  
  12.  
  13. Also, make sure your CONFIG.SYS includes:
  14. 1) a FILES=nn statement where nn is a number with a value of 20 or more.
  15. 2) a SHELL=X:\COMMAND.COM statement where X is the drive indicator where
  16. COMMAND.COM can be found. If COMMAND.COM is in the same directory as the
  17. ADIOS programs, this modification to CONFIG.SYS is not necessary.
  18. ---------------------------------------------------------------------------
  19.  
  20. Adios - run time error codes from Quick Basic.
  21.  
  22. When you get the error message to turn on the printer and call us with
  23. the error code can be found on the list below. Many times you can fix the
  24. problem without calling. TURBO errors are more technical and are listed
  25. on the opposite side of this page.
  26.  
  27. 5       Illegal function call - program was not started correctly
  28.         If the line number is 5564, see the comments about CONFIG.SYS above.
  29. 7       Out of memory                   
  30. 14      Out of string space             
  31. 24      Device timeout                  
  32. 25      Device fault                    
  33. 27      Out of paper                    
  34. 51      Internal error                  
  35. 52      Bad filename or number
  36. 53      File not found
  37. 57      Device I-O error
  38. 61      Disk full
  39. 64      Bad file name
  40. 67      Too many files            - check CONFIG.SYS FILES=20 or more
  41. 68      Device unavailable
  42. 70      Permission denied
  43. 71      Disk not ready
  44. 72      Disk-media error
  45. 75      Path File access error
  46. 76      Path not found
  47.  
  48. TURBO ERRORS
  49.  
  50. An error in an input or output operation at run-time results in in I/O er-
  51. ror. If I/O checking is active (I compiler directive active), an I/O error 
  52. causes the program to halt and the following error message is displayed:
  53.  
  54.      I/O error NN, PC-addr
  55.      Program aborted
  56.  
  57. Where NN is the I/O error number, and addr is the address in the program 
  58. code where the error occurred. 
  59.  
  60. If I/O error checking is passive ({$I-}), an I/O error will not cause the 
  61. program to halt. Instead, all further I/O is suspended until the result of 
  62. the I/O operation has been examined with the standard function IOresult. If 
  63. I/O is attempted before IOresult is called after an error, a new error 
  64. occurs, possibly hanging the program. 
  65.  
  66. The following contains explanations of all run-time error numbers. Notice 
  67. that the numbers are hexadecimal! 
  68.  
  69. NOTE: The decimal equivalent has been added and is the first number to be    
  70. listed.
  71.  
  72.  
  73. 145     91      Seek beyond end-of-file.
  74.  
  75. 153     99      Unexpected end-of-file.
  76. 1) Physical end-of-file encountered before EOF-character (Ctrl-Z) 
  77. when reading from a text file. 2) An attempt was made to read 
  78. beyond end-of-file on a defined file. 3) A Read or BlockRead is unable 
  79. to read the next sector of a defined file. Something may be wrong with 
  80. the file, or (in the case of BlockRead) you may be trying to read past 
  81. physical EOF. 
  82.  
  83. 240     F0      Disk write error.
  84. Disk full while attempting to expand a file. This may occur with the 
  85. output operations Write, WriteLn, BlockWrite, and Flush, but also Read, 
  86. ReadLn, and Close may cause this error, as they cause the write buffer 
  87. to be flushed. 
  88.  
  89. 241     F1 Directory is full.
  90. You are trying to Rewrite a flle, and there is no more room in the disk 
  91. directory. 
  92.  
  93. 243     F3      Too many files open. 
  94. Change CONFIG.SYS FILES= to a higher number.
  95.  
  96. 255     FF      File disappeared. 
  97. An attempt was made to Close a file which was no longer present in the disk 
  98. directory, e.g. because of an unexpected disk change. 
  99.